home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / MCI-MAIL.SCR < prev    next >
Text File  |  1986-02-22  |  2KB  |  82 lines

  1. .LINKED SCRIPT FOR MCI-MAIL BASIC SERVICE;
  2. .LINK IT TO YOUR QMODEM PHONE DIRECTORY ENTRY FOR MCI-MAIL.
  3. .AS IS, THIS SCRIPT PRINTS ALL YOUR MAIL, THEN DISCONNECTS.
  4.  
  5. .USE YOUR WORD PROCESSOR TO EDIT THIS FILE TO INCLUDE
  6. .  [1] Your MCI-Mail username
  7. .  [2] Your MCI-Mail password
  8. .  [3] Any MCI-Mail command(s)
  9. .      (examples are for standard, not advanced service)
  10.  
  11. .COMMENTS ARE PREDEDED BY A PERIOD & REFER TO THE NEXT COMMAND LINE
  12.  
  13. .Display message on-screen only
  14. NOTE ** LOGON TO MCI-MAIL VIA DIRECT CONNECT **
  15.  
  16. .The next line says to WAITFOR 60 seconds before halting script
  17. TIMEOUT 60
  18.  
  19. .Set key parameters for MCI-Mail
  20. TURNON XON/XOFF
  21. TURNOFF ECHO LINEFEED
  22.  
  23. .Call MCI-Mail;
  24. .phone number, bps, comm parameters depend on directory entry #
  25. .for local #s contact MCI-Mail at 800-MCI-MAIL
  26.  
  27. .MCI-Mail 'logon' is CR
  28. SEND "{"
  29.  
  30. .Wait for MCI-Mail to request your user name
  31. WAITFOR "Please enter your user name: "
  32.  
  33. .[1] Send your MCI-Mail user name followed by CR
  34. SEND "USERNAME{"
  35.  
  36. .Wait for MCI-Mail to request your password
  37. WAITFOR "Password: "
  38.  
  39. .[2] Send your password
  40. SEND "FAKE-PASSWORD{"
  41.  
  42. .Turn on your printer
  43. TURNON PRINT
  44.  
  45. .Wait for MCI-Mail to Request your input
  46. WAITFOR "<RETURN> to continue"
  47.  
  48. .Send a CR
  49. SEND "{"
  50.  
  51. .Wait for MCI-Mail to Request your input
  52. WAITFOR "or EXIT):"
  53.  
  54. .[3] Select PRINT to print messages nonstop
  55. SEND "PRINT{"
  56.  
  57. .Wait for MCI-Mail to Request your input
  58. WAITFOR "(or MENU or EXIT):"
  59.  
  60. .[3] Select ALL to print incoming messages only
  61. .    or INBOX to print just incoming messages
  62. SEND "ALL{"
  63.  
  64. .Wait for MCI-Mail to Request your input
  65. WAITFOR "Press <RETURN> to continue"
  66.  
  67. .Send a CR
  68. SEND "{"
  69.  
  70. .Wait for MCI-Mail to Request your input
  71. WAITFOR "Command (or MENU or EXIT):"
  72.  
  73. .[3] Select EXIT to log off
  74. SEND "EXIT{"
  75.  
  76. .Disconnect from Phone Line
  77. HANGUP
  78.  
  79. .Discontinue script processing; return control to keyboard
  80. RETURN
  81. 
  82.